From 936d56a711623fd5fd607b9f49e8022e4a8129ae Mon Sep 17 00:00:00 2001 From: flx5 Date: Thu, 12 Mar 2015 20:16:12 +0100 Subject: Performance improvements for #1807 --- src/StringUtils.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/StringUtils.cpp b/src/StringUtils.cpp index 95b3c7400..4adc6a0a0 100644 --- a/src/StringUtils.cpp +++ b/src/StringUtils.cpp @@ -151,10 +151,10 @@ AStringVector StringSplitWithQuotes(const AString & str, const AString & delim) while ((cutAt = str.find_first_of(delim, Prev)) != str.npos) { AString current = str.substr(Prev, cutAt - Prev); - if ((current.at(0) == '"') || (current.at(0) == '\'')) + if ((current.front() == '"') || (current.front() == '\'')) { Prev += 1; - cutAtQuote = str.find_first_of(current.at(0), Prev); + cutAtQuote = str.find_first_of(current.front(), Prev); if (cutAtQuote != str.npos) { current = str.substr(Prev, cutAtQuote - Prev); @@ -162,7 +162,7 @@ AStringVector StringSplitWithQuotes(const AString & str, const AString & delim) } } - results.push_back(current); + results.push_back(std::move(current)); Prev = cutAt + 1; } -- cgit v1.2.3